home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD v1.1 / Amiga Developer CD v1.1 - May 1996 (1996)(Schatztruhe)[!].iso / Contributions / IAM / Networking / Envoy-2.0 / include / envoy / accounts.h next >
C/C++ Source or Header  |  1994-12-22  |  1KB  |  47 lines

  1. #ifndef    ENVOY_ACCOUNTS_H
  2. #define ENVOY_ACCOUNTS_H
  3.  
  4. struct UserInfo
  5. {
  6.     UBYTE    ui_UserName[32];
  7.     UWORD    ui_UserID;
  8.     UWORD    ui_PrimaryGroupID;
  9.     ULONG   ui_Flags;
  10. };
  11.  
  12. struct GroupInfo
  13. {
  14.     UBYTE    gi_GroupName[32];
  15.     UWORD    gi_GroupID;
  16. };
  17.  
  18. /* Error codes for the security server */
  19.  
  20. #define    ACCERROR_NORESOURCES    100
  21. #define ACCERROR_NOPRIVS    101
  22. #define ACCERROR_NOAUTHORITY    102
  23. #define ACCERROR_UNKNOWNUSER    103
  24. #define ACCERROR_UNKNOWNGROUP    104
  25. #define ACCERROR_LASTUSER    105
  26. #define ACCERROR_LASTGROUP    106
  27. #define ACCERROR_LASTMEMBER    107
  28. #define ACCERROR_GROUPEXISTS    108
  29. #define ACCERROR_NOFREEGROUPS    109
  30. #define ACCERROR_UNKNOWNMEMBER    110
  31.  
  32. /* Currently Defined Flags for the User Flags data */
  33.  
  34. #define UFLAGB_AdminName    0    /* Whether or not this User may change his/her own name */
  35. #define UFLAGB_AdminPassword    1    /* Whether or not this User may change his/her own password */
  36. #define UFLAGB_NeedsPassword    2    /* Whether or not a password is required for this user */
  37. #define    UFLAGB_AdminGroups    3    /* Whether or not this User may create/delete groups */
  38. #define UFLAGB_AdminAll        4    /* User may do anything he wants. */
  39.  
  40. #define UFLAGF_AdminName    (1 << UFLAGB_AdminName)
  41. #define UFLAGF_AdminPassword    (1 << UFLAGB_AdminPassword)
  42. #define UFLAGF_NeedsPassword    (1 << UFLAGB_NeedsPassword)
  43. #define UFLAGF_AdminGroups    (1 << UFLAGB_AdminGroups)
  44. #define UFLAGF_AdminAll        (1 << UFLAGB_AdminAll)
  45.  
  46. #endif    /* ENVOY_ACCOUNTS_H */
  47.